diff options
Diffstat (limited to 'app/[lng]/evcp/data-room/layout.tsx')
| -rw-r--r-- | app/[lng]/evcp/data-room/layout.tsx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/[lng]/evcp/data-room/layout.tsx b/app/[lng]/evcp/data-room/layout.tsx new file mode 100644 index 00000000..9bef6027 --- /dev/null +++ b/app/[lng]/evcp/data-room/layout.tsx @@ -0,0 +1,17 @@ +import { ReactNode } from 'react'; +import { SiteFooter } from '@/components/layout/Footer'; +import { HeaderDataRoom } from '@/components/layout/HeaderDataroom'; + +export default function EvcpLayout({ children }: { children: ReactNode }) { + return ( + <div className="flex flex-col h-screen bg-background"> + <HeaderDataRoom /> + <main className="flex-1 overflow-hidden"> + <div className='container-wrapper h-full'> + {children} + </div> + </main> + <SiteFooter/> + </div> + ); +}
\ No newline at end of file |
